home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2007 December
/
PCWorld_2007-12_cd.bin
/
domacnost a kancelar
/
autoit
/
autoit-v3-setup.exe
/
Examples
/
Helpfile
/
_GUICtrlMonthCalGetMaxSelCount.au3
< prev
next >
Wrap
Text File
|
2007-09-08
|
357b
|
15 lines
#include <GUIConstants.au3>
#include <date.au3>
#include <GuiMonthCal.au3>
opt('MustDeclareVars', 1)
Dim $Date
GUICreate( "Get Max Sel Count", 210, 190)
$Date = GUICtrlCreateMonthCal (_NowCalcDate(), 10, 10)
GUISetState()
MsgBox(0, "Total number of days that can be selected for the control.", _GUICtrlMonthCalGetMaxSelCount ($Date), 10)